php delete session

42

clear session php -

<?php
   unset($_SESSION['counter']);
?>

php session destroy -

<?php
// Destroy the currently active session.
session_destroy();
?>

Comments

Submit
0 Comments